WPF和Silverlight版Chart2D帮助文档
添加一个条形系列以及一个折线系列

为了以编程方式添加条形系列以及一个折线系列,可以使用下面的代码:

C#
拷贝代码
chart.Data.Children.Add(new XYDataSeries() {
       ChartType=ChartType.Column,
       XValuesSource = new double[] {1,2,3 },
       ValuesSource = new double[] {1,2,3 } });

     chart.Data.Children.Add(new XYDataSeries() {
       ChartType = ChartType.Line,
       XValuesSource = new double[] { 1, 2, 3 },
       ValuesSource = new double[] { 3, 2, 1 } });
查看其它

 

 


产品网站:http://www.gcpowertools.com.cn  |  咨询热线:4006576008   |   ©2015 西安葡萄城